991ee4d148f227d37458ee26fccf2dfa94449d4b,portal-impl/src/com/liferay/portlet/polls/lar/PollsPortletDataHandlerImpl.java,PollsPortletDataHandlerImpl,getChoicePath,#PortletDataContext#PollsChoice#,430

Before Change



	protected String getChoicePath(
			PortletDataContext context, PollsChoice choice) {
		return context.getPortletPath(PortletKeys.POLLS) + "/questions/" +
			choice.getQuestionId() + "/choices/" + choice.getChoiceId() +
				".xml";
	}

	protected String getQuestionPath(

After Change


	protected String getChoicePath(
		PortletDataContext context, PollsChoice choice) {

		StringMaker sm = new StringMaker();

		sm.append(context.getPortletPath(PortletKeys.POLLS));
		sm.append("/questions/");
		sm.append(choice.getQuestionId());
		sm.append("/choices/");
		sm.append(choice.getChoiceId());
		sm.append(".xml");

		return sm.toString();
	}

	protected String getQuestionPath(